home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
gnu
/
xboard21.lha
/
xboard-2.1.pl11
/
Imakefile
< prev
next >
Wrap
Makefile
|
1993-01-04
|
759b
|
36 lines
#
# Imakefile -- for instructions on generating a Makefile
# for xboard from this file, see the file INSTALL.
#
SYS_LIBRARIES = -lm
LOCAL_LIBRARIES = XawClientLibs
DEPLIBS = XawClientDepLibs
DEFINES = -DHAS_GETTIMEOFDAY
# CDEBUGFLAGS = -g
# CC = gcc -Wall -pedantic -ansi -Wno-implicit -Wno-comment
# CC = gcc -Wall -traditional
# For HP-UX, per R. K. Lloyd:
# CDEBUGFLAGS = +O3 +Obb1000
# Try this if you use gcc and xboard crashes in sscanf.
# Probably needed on VAX Ultrix 3.1 and on IBM PS/2 AIX.
# CCOPTIONS = -fwritable-strings
SRCS = parser.c xboard.c
OBJS = parser.o xboard.o
AllTarget(xboard)
depend:: parser.c
clean::
$(RM) parser.c chess.lst
ComplexProgramTarget(xboard)